【例子介绍】c# socket编程 cs架构实例三:即时通信
c# socket编程 cs架构实例三:即时通信。包含服务端和客户端,是一个很好的学习C# socket编程和CS架构的例子。http://www.tangshansoft.cn
【相关图片】
【源码结构】
文件清单
└── chap05
├── ChatClient
│ ├── App.ico
│ ├── AssemblyInfo.cs
│ ├── bin
│ │ └── Debug
│ │ ├── ChatClient.exe
│ │ └── ChatClient.pdb
│ ├── ChatClient.cs
│ ├── ChatClient.csproj
│ ├── ChatClient.csproj.user
│ ├── ChatClient.resx
│ ├── ChatClient.sln
│ ├── ChatClient.suo
│ └── obj
│ └── Debug
│ ├── ChatClient.ChatClientForm.resources
│ ├── ChatClient.exe
│ ├── ChatClient.pdb
│ ├── ChatClient.projdata
│ ├── temp
│ └── TempPE
└── ChatServer
├── App.ico
├── AssemblyInfo.cs
├── bin
│ └── Debug
│ ├── ChatServer.exe
│ └── ChatServer.pdb
├── ChatServer.cs
├── ChatServer.csproj
├── ChatServer.csproj.user
├── ChatServer.resx
├── ChatServer.sln
├── ChatServer.suo
└── obj
└── Debug
├── ChatServer.ClientSeverForm.resources
├── ChatServer.exe
├── ChatServer.pdb
├── ChatServer.projdata
├── temp
└── TempPE
15 directories, 28 files
评论